/*
 * CJK font fallback. Poppins (the template body font) has no Chinese glyphs,
 * so append OS-native CJK faces: PingFang SC (macOS/iOS), Microsoft YaHei
 * (Windows), Noto Sans SC (Linux/Android/ChromeOS). Latin text still renders
 * in Poppins; only Chinese characters fall through to the CJK face.
 *
 * Load order matters (see CLAUDE.md): this file MUST be linked in <head>
 * BEFORE main.bundle.css so it augments — not fights — the template's own
 * font-family declarations. We repeat the template's selectors so specificity
 * matches and the extended stack wins on a tie.
 */
body,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.nav.metismenu,
.btn,
input, select, textarea, button {
    font-family: Poppins, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}
