/* English & Latin */
@font-face {
  font-family: "AppleLatin";
  font-style: normal;
  font-display: swap;
  src: url("/font/Inter-VariableFont_opsz,wght.woff2") format("woff2");
  unicode-range: U+0000-00FF;
}

/* Chinese & Japanese & Korean */
@font-face {
  font-family: "AppleCJK";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/font/NotoSansSC-VariableFont_wght.woff2") format("woff2");
  unicode-range: U+4E00-9FFF, U+3040-30FF, U+AC00-D7AF;
}

/* Site-wide Font Strategy */
body {
  font-family:
    /* Apple system fonts (highest priority) */
    -apple-system,
    BlinkMacSystemFont,

    /* On Apple OSs */
    "PingFang SC",

    /* Fallback on other systems */
    AppleLatin,
    AppleCJK,

    /* Last resort */
    "Segoe UI",
    Roboto,
    "Microsoft YaHei",
    sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}