「EN」言語では問題なく動作していますが、言語(SK)で同じことを行うと、フォントの重みが異なる文字があります。フォントは「Open Sans」です。これらの文字を font.google ビューアーで試しても問題ありません。実際の font-weight は 300 です。400 では問題ありませんが、細くしたいです。一部の Chrome(Mobile)、Edge、IE で問題が発生します。何か案は?
ページへのリンク: thomaskovo.github.io/hotel-it/IT_Bussiness_Solutions/hosted_exchange_office_365.html
body{
font-family: 'Open Sans', sans-serif;
font-weight:300;
}
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
</head>
<body>
This is a testing text.
Mačka žena ťava šošovica
<hr>
Open this in Edge or IE
</body>
</html>