/* Simplified Chinese font stack. Loaded by base-generic.html only when
 * the active language is `zh`.
 *
 * No @font-face declaration: Noto Sans CJK SC is ~10 MB even
 * subsetted, which is unreasonable to ship over the web on every page
 * load. Instead we rely on the high-quality CJK fonts that the major
 * platforms already ship with the OS — most Chinese users see better
 * typography this way than any web font we could push:
 *
 *   - macOS / iOS  : PingFang SC      (Apple's modern Chinese face)
 *   - Windows      : Microsoft YaHei  (Win 7+ default Chinese face)
 *   - Android      : Source Han Sans  / Noto Sans CJK SC  (system default)
 *   - Linux        : Noto Sans CJK SC  (when present)
 *
 * The screenshot infrastructure stages the nix-built Noto Sans CJK SC
 * face so the gallery's CJK rendering matches what a typical user sees
 * — that's the closest single source we have to Apple's PingFang.
 * (See `script_fonts` on the playwright bazel rule.) */

* {
  font-family: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC",
    "Noto Sans CJK SC", "Roboto", sans-serif;
}
