/* Self-hosted / system font stack — no Google Fonts CDN */
:root {
  --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC",
    ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Noto Sans SC",
    ui-sans-serif, system-ui, sans-serif;
}

/* Optional local Manrope for Latin UI — place files under /public/fonts/ to enable */
@font-face {
  font-family: "Manrope Local";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: local("Manrope"), local("Manrope Medium");
}

@supports (font-variation-settings: normal) {
  :root {
    --font: "Manrope Local", "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC",
      ui-sans-serif, system-ui, sans-serif;
  }
}
