/* ============================================================
   APPOSITE — FONTS
   ------------------------------------------------------------
   Brand guide calls for two typefaces:
     1. "Mont Book" / "Mont Bold" — title font (commercial, sourced
        from DaFont, kerning/letter-spacing 80). We do not have the
        licensed font file, so it is SUBSTITUTED below with "Jost",
        a geometric sans-serif from Google Fonts with the closest
        available proportions (circular bowls, single-story a,
        wide geometric letterforms). Flagged in readme.md — please
        supply the licensed Mont Book/Mont Bold files if you have
        them and we will swap this out.
     2. "Montserrat" — secondary/body font (Regular, SemiBold,
        ExtraBold). This one is genuine — it really is sourced from
        Google Fonts, so it is loaded as-is.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Title font — brand spec: "Mont Book" / "Mont Bold" (SUBSTITUTED with Jost) */
  --font-title: 'Jost', 'Century Gothic', sans-serif;

  /* Secondary / body font — brand spec: "Montserrat" (genuine) */
  --font-body: 'Montserrat', sans-serif;
}
