/* VOCO SCALE Local Fonts -- ZERO external requests */
/* Variable Fonts: 1 file per family covers all weights */

/* Montserrat Variable (wght 100-900, Latin) -- 40KB */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-var-latin.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;
}

/* Inter Variable (wght 100-900, Latin) -- 48KB */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var-latin.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;
}

/* Material Symbols Outlined -- Subset to ~70 used icons, static wght=400 -- 240KB
   font-display: block prevents FOIT "shield_lock"-text-leak before font loads.
   3s block-phase is safe since font is local + preloaded. */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/material-symbols-subset.woff2') format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga';
  /* Safety: hide icon-text while font loads (in case font-display:block fallback fails). */
  font-size-adjust: none;
}
/* While icon-font hasn't loaded, hide the raw text to avoid "shield_lock"-leak.
   The .fonts-loaded class is added by JS after document.fonts.ready (see vocoscale.js). */
html:not(.fonts-loaded) .material-symbols-outlined {
  visibility: hidden;
}
.fonts-loaded .material-symbols-outlined {
  visibility: visible;
}
