/* Self-hosted webfonts — replaces Google Fonts so visitors in mainland China
   (where fonts.googleapis.com / fonts.gstatic.com are blocked) load reliably.
   All three are variable fonts, so one .woff2 covers every weight.
   - Source Serif 4 + Manrope: subset to the Latin range (full English coverage).
   - Noto Sans SC: subset to the Chinese characters this site actually uses;
     any character outside that set falls back to PingFang SC / Microsoft YaHei
     (see the font-family stacks in gdw.css), never a tofu box. */

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('SourceSerif4-subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('Manrope-subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('NotoSansSC-subset.woff2') format('woff2');
}
