I use Roboto on my website, all the development went from under Mac OS and at the very end I ran into a problem:

Under Windows 10 , on some machines, Roboto is rendered with errors characteristic of its earlier versions (Sch as W with font-weight=300 , the quote curve). The reason is that the old version of the font is installed on the PC.

But the problem arising on my site is not typical for other sites using Roboto - for example .

I connect the font like this:

 <style>@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&subset=cyrillic-ext');</style> 

Perhaps the question can be formulated as follows: how to prioritize the use of fonts from Google fonts over locally installed?

    1 answer 1

    In the css-file to which you refer, there is a priority of local fonts. You can download this file, delete all local('название гарнитуры'), leaving only the url('Адрес шрифта на GF') . Or put local('название гарнитуры') at the end of the line. Then include this file instead of the current one.