/* Self-hosted licensed fonts for the EST magazine page (`/est`).

   HAND-MAINTAINED — unlike oaz.css / blz.css / bk.css, this file is NOT produced by
   apps/web/scripts/generate-fonts.mjs. That script only fetches from fonts.googleapis.com,
   and Miller Text is not a Google font.

   Loaded when est. is on for the tenant (views/est/common/fonts.hbs, included from each
   tenant's head_meta_tags under `isEstEnabled`). Shared across tenants on purpose: these
   are the EST brand's faces, not one masthead's.

   To add a weight or style: commit the .woff2 next to this file using the
   <family>-<style>-<weight>.woff2 naming below, then add a matching @font-face block.
   No subsetting is applied (the generated Google files split latin / latin-ext via
   unicode-range; do the same here only if the payload becomes a problem).

   Expected assets in apps/web/public/fonts/:
     miller-text-normal-400.woff2
     miller-text-italic-400.woff2
     miller-text-normal-700.woff2

   Clarendon Text Pro is NOT here: it is served by the Adobe kit nff5lkh, loaded from
   views/est/common/fonts.hbs under the family name `clarendon-text-pro`. */

@font-face {
  font-family: 'Miller Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/miller-text-normal-400.woff2) format('woff2');
}

@font-face {
  font-family: 'Miller Text';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/miller-text-italic-400.woff2) format('woff2');
}

@font-face {
  font-family: 'Miller Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/miller-text-normal-700.woff2) format('woff2');
}
