我已经获得了 Gotham 字体的路径(我已经缩短了)......
https://cloud.typography.com/[path shortened]/css/fonts.css
我可以在@font-face 定义中使用它吗(似乎不起作用 - 示例不使用 .css 作为有效的 src)?
@font-face {
font-family: 'Gotham';
src: url("https://cloud.typography.com/[path shortened]/css/fonts.css");
font-family: "Gotham SSm A", "Gotham SSm B";
font-style: normal;
font-weight: 400;
}
这样我就可以像这样使用它:
body {
font-family: 'Gotham', sans-serif;
}
我显然遗漏了一些东西,因为它总是使用无衬线后备,而不是所需的字体。
NB 字体已付费并正在通过字体排版正确许可的域上进行测试)