Speculatory! If you are testing on two different computers, with the same browser and browser version, your font difference is probably coming from the OS. With the Googles API, when calling Firefox or Chrome, the local attribute is used, invoking the OS version of this font, if available. In which the font called or provided by the OS may be an italic version instead of the regular one.
My suggestion is to download the font and manually import yourself without using the local attribute.
When importing the Google Fonts API, the following happens:
A query for Inconsolata from Firefox, for example, returns the following CSS:
@font-face { font-family: 'Inconsolata'; src: local('Inconsolata'), url('http://themes.googleusercontent.com/fonts/font?kit=J_eeEGgHN8Gk3Eud0dz8jw') format('truetype'); }
A request from Internet Explorer, on the other hand, returns:
@font-face { font-family: 'Inconsolata'; src: url('http://themes.googleusercontent.com/fonts/font?kit=J_eeEGgHN8Gk3Eud0dz8jw'); }
https://developers.google.com/webfonts/docs/technical_considerations
Aaron jones
source share