/* =====================================================
   MEET EVERETT BRAND FONTS
   =====================================================
   Brand typefaces (all commercially licensed):
     Logo:     Wackets Regular ("Meet" script)
               Cheeky Moghster Stamp Expanded ("Everett" wordmark)
     Campaign: Nexa Rust Sans Black 2 (headlines, buttons)
               Archer Bold (body, subheads)

   The logo fonts live inside the logo image and animation,
   so they never need to load as webfonts on this site.
   Only the two campaign fonts need web files.

   Current stand-ins until the files arrive:
     Nexa Rust Sans Black 2 -> Archivo Black
     Archer                 -> Bitter
     Wackets (small script accents only) -> Yellowtail

   TO SWAP IN THE REAL CAMPAIGN FONTS:
   1. Drop the .woff2 (or .otf/.ttf) files in this /fonts folder.
   2. Uncomment the @font-face blocks below, match the file names.
   3. Put the brand names first in the CSS variables at the bottom.
   ===================================================== */

/*
@font-face {
  font-family: "Nexa Rust Sans Black";
  src: url("nexa-rust-sans-black-2.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Archer";
  src: url("archer-book.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Archer";
  src: url("archer-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Wackets";
  src: url("wackets-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
*/

:root {
  /* After adding files, e.g.:
     --font-display: "Nexa Rust Sans Black", "Archivo Black", sans-serif; */
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Bitter", Georgia, serif;
  --font-script: "Yellowtail", cursive;
}
