/* Synthyl 同光 · 本地字体方案
 * 不依赖任何外部 CDN（Google Fonts 在国内被墙）
 * 使用系统自带的高质量中文字体，所有现代设备均已内置
 */

:root {
  --font-sans: "PingFang SC", "Noto Sans SC", "Microsoft YaHei",
               "Hiragino Sans GB", "Source Han Sans SC",
               -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;

  --font-serif: "Cormorant Garamond", "Source Han Serif SC",
                "Songti SC", "STSong", Georgia, serif;

  --font-mono: "JetBrains Mono", "SF Mono", "Cascadia Code",
               Menlo, Consolas, "Courier New", monospace;
}

html, body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
