/* 本地字体部署 - Noto Serif SC + Noto Sans SC (静态字体版本) */
/*
 * 从 Google 官方 TTF 转换而来,使用 pyftsubset 子集化 + 转 woff2:
 *
 *   # 安装工具
 *   pip3 install fonttools brotli
 *
 *   # 子集化 + 转 woff2(保留 CJK 常用字 + ASCII + 标点)
 *   pyftsubset NotoSansSC-Regular.ttf \
 *     --unicodes="U+4E00-9FFF,U+3000-303F,U+FF00-FFEF,U+0020-007E" \
 *     --layout-features=* --no-hinting \
 *     --flavor=woff2 \
 *     --output-file=NotoSansSC-Regular.woff2
 *
 *   # 同理转换 Bold / Serif 等
 */

@font-face {
    font-family: 'Noto Serif SC';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/NotoSerifSC-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Serif SC';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/NotoSerifSC-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/NotoSansSC-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/NotoSansSC-Bold.woff2') format('woff2');
}
