/* ============================================================
   assets/fonts.css — 全站统一霞鹜文楷（本地平滑版）
   字体文件：assets/fonts/LXGWWenKai-Regular-smooth.woff2
   （官方 v1.522 子集 + gasp={65535:2}：仅灰度抗锯齿、关闭网格拟合，
   避免 Windows 楷体 hinting 把笔画吸附出阶梯锯齿）。
   2026-08-15 vault 化后仅 index / about 两个公开页使用
   （texts / admin 管理页已退役）；首页经 components.css 挂载同字体。
   ============================================================ */

@font-face {
  font-family: "LXGW WenKai";
  src: url("fonts/LXGWWenKai-Regular-smooth.woff2") format("woff2"),
       url("fonts/LXGWWenKai-Regular-smooth.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* LXGW 只有 Regular 字形；关闭合成加粗/斜体可避免 Windows 伪造粗体
   造成的笔画发毛。需要层级时用字号与字距，不用伪粗。 */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  -webkit-font-synthesis: none;
}
