/* 自托管字体 ——————————————————————————————————————————————
   Google Fonts 的 fonts.googleapis.com 在中国大陆打不开，
   所以把 woff2 下载下来放在自己服务器上，从 cindying.com 直接发。

   · 只取 latin 子集：中文走系统字体（苹方 / 微软雅黑），不下载几 MB 的中文字库
   · Gluten 和 Instrument Sans 都是可变字体，一个文件覆盖所有字重
   · 合计约 107 KB
   ———————————————————————————————————————————————————————— */

@font-face {
  font-family: 'Gluten';
  font-style: normal;
  font-weight: 100 900;          /* 可变字体：一个文件覆盖全部字重 */
  font-display: swap;
  src: url('../fonts/gluten-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-400-italic.woff2') format('woff2');
}
