/* The planner's two faces, per the design brief: Archivo for everything structural,
   IBM Plex Mono for stamped labels and meta. No third face.

   The stamped face was Courier Prime until #80. Every stamp in the app is uppercase, so cap
   height — not font-size — is the size a reader actually sees, and Courier Prime's is 58% of
   the em against IBM Plex Mono's 70%. At the 10px the desktop stamps use, that is 5.8px
   capitals versus 7.0px. It also carries about 25% less ink at the same size (measured on the
   same string, same canvas), and most stamps are --color-muted rather than full ink, so the
   thin strokes had nothing to fall back on. Blurry on a phone was the entirely fair verdict.

   Both faces are 0.6em advance, so this was a drop-in: identical string widths, no reflow, and
   the tracking values below still hold. */

   Self-hosted rather than pulled from fonts.googleapis.com — the native shells load this
   layout on gym wifi and a blocked or slow CDN would leave the running clock in a fallback
   face mid-practice. Latin subset only; woff2 only (every browser the app supports).

   This file is deliberately NOT @imported into app/assets/tailwind/application.css: the
   Tailwind build inlines its imports into app/assets/builds/tailwind.css, and Propshaft
   resolves url() against the containing asset's own directory, so the font paths would
   resolve under builds/. Linked on its own from the layouts instead, where the logical
   path is the assets root. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("/assets/archivo-variable-latin-7a918f31.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;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/ibm-plex-mono-400-latin-d803141a.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;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/ibm-plex-mono-700-latin-e35453d6.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;
}
