/* ==========================================================================
   Viola — Local brand fonts
   Actual files supplied by the client under assets/fonts/:
     b-koodak/B Koodak Bold_0.ttf     (only Bold exists — registered at both
                                       400 and 700 so the browser never
                                       synthesizes a faux weight)
     b-koodak/B Koodak Outline_0.ttf  (decorative outline cut — exposed as
                                       its own family for display accents)
     mv-boli/mvboli.ttf               (hand-drawn Latin, matches the mascots)
   ========================================================================== */

@font-face {
  font-family: "B Koodak";
  src: url("../assets/fonts/b-koodak/B Koodak Bold_0.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "B Koodak";
  src: url("../assets/fonts/b-koodak/B Koodak Bold_0.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "B Koodak Outline";
  src: url("../assets/fonts/b-koodak/B Koodak Outline_0.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MV Boli";
  src: url("../assets/fonts/mv-boli/mvboli.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Utility for Latin brand bits set in MV Boli: wordmark, prices, "10g" tags */
.font-en {
  font-family: var(--font-en);
  unicode-bidi: isolate;
}

/* Decorative outline display text (hero accent words, watermarks) */
.font-outline {
  font-family: var(--font-fa-outline);
  font-weight: 400;
}
