/* ====== 自托管字体（同源自托管，避免 Google Fonts 在国内被墙/超时） ======
   字体文件位于同目录：inter-latin-wght-normal.woff2 / jetbrains-mono-latin-wght-normal.woff2
   均为可变字体（variable font），单文件覆盖全部字重，体积小、加载快。
*/
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('inter-latin-wght-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('jetbrains-mono-latin-wght-normal.woff2') format('woff2');
}
