Changing the font from Bootstrap CDN

Hello,

I use ckeditor on one of my websites.
I defined bootstrap css in the config file.
However, the font has changed in the last update. How can I change it to Arial?

config.contentsCss = ['https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css'];

I installed the “Helvetica Neue” font on the computer to get the text width in pixels using PHP, which turned out to be the default font of my website and ckeditor.
So, I guess the next font is shown when the “Helvetica Neue” font is not installed on the computer.

Can the “Helvetica Neue” font be ignored by adding anything to the CDN url?

I added the following to the head tag for the site, but I don’t know if something like this can be added for ckeditor.

    <style>
      body {
        font-family: Arial !important;
      }
    </style>

Font convention in URL:

body {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
}
Sponsor our Newsletter | Privacy Policy | Terms of Service