/* The documentation shell's three theme faces, served from this origin.

   `<esp-root>` normally injects `fonts.googleapis.com` stylesheet links at
   runtime for whichever families the active theme names. The docs shell opts
   out of that with `google-font-loading="none"` and declares its faces here
   instead, so the typography is identical on the standalone host and on the
   platform-hosted prebuilt artifact — whose frozen `style-src 'self'
   'unsafe-inline'` policy blocks the cross-origin links — and so no visitor's
   browser calls Google to read the documentation.

   The three faces are exactly what the runtime links resolved to: Quicksand
   400 (body), Oswald 700 (headings), Sometype Mono 400 (code). Each is split
   into the same `latin` and `latin-ext` subsets Google's css2 endpoint serves,
   so a browser still downloads only the ranges a page actually uses.

   The WOFF2 bytes are checked in under assets/shell-fonts/ — the build never
   fetches them. All three families are SIL Open Font License 1.1; provenance
   is recorded in license/asset-provenance.json (id:
   docs-shell-self-hosted-fonts) and the notice lives in
   license/THIRD_PARTY_NOTICES.md. They are docs-only and stay out of the
   published @taprootio/espalier package. */

/* Quicksand 400 — theme fontBody */
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/shell-fonts/quicksand-400-latin-ext.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/shell-fonts/quicksand-400-latin.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Oswald 700 — theme fontHeadings */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/shell-fonts/oswald-700-latin-ext.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/shell-fonts/oswald-700-latin.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Sometype Mono 400 — theme fontMonospace */
@font-face {
  font-family: "Sometype Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/shell-fonts/sometype-mono-400-latin-ext.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Sometype Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/shell-fonts/sometype-mono-400-latin.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
