/* ============================================================
   本地字体（替代外联 Google Fonts）
   - 优先使用本机已安装的同名字体（local）
   - 其次加载站点本地 woff2 文件（css/fonts/ 目录）
   - 最终回退到系统字体栈（见 css/style.css 的 --serif/--sans/--num）
   将 Inter / NotoSansSC / NotoSerifSC 的 .woff2 放入 css/fonts/ 即可离线生效。
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: local("Inter"), url("fonts/Inter.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SC";
  src: local("Noto Sans SC"), local("Source Han Sans SC"),
       url("fonts/NotoSansSC.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif SC";
  src: local("Noto Serif SC"), local("Source Han Serif SC"),
       url("fonts/NotoSerifSC.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
