Google 字体粗细显示不正确

Google fonts weight not properly displayed

如果我 运行 下面的代码,Josefine Sans 字体粗细 400 看起来比粗细 600 更粗。谁能解释为什么会这样?

body {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
}
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:400,600" rel="stylesheet">
</head>

<body>
 <p style="font-weight:400;">The spectacle before us was indeed sublime.</p>
 <p style="font-weight:600;">The spectacle before us was indeed sublime.</p>
</body>
</html>

在我的浏览器中,400 比 600 轻,所以这可能是计算机特定的。

最可能的原因是您安装了错误或不完整的网络字体版本locally/on您的计算机。