/*
 * Actual — brand fonts (self-hosted, latin subset: covers Spanish á é í ó ú ñ ü ¿ ¡ and €).
 * The brandbook specifies paid fonts (Bon Vivant Serif for headings, Flink Neue for body);
 * these aliases map them to the closest free Google Fonts (SIL OFL 1.1, see assets/fonts/LICENSE-*.txt).
 *
 *   "Actual Display"   = Noto Serif Display (variable, wght 100–900, + italic)  → stand-in for Bon Vivant Serif
 *                        Closest match to Bon Vivant Serif Regular is weight 300–400; use ~600 where the brandbook uses Bold.
 *   "Actual Sans"      = Outfit (variable, wght 100–900)                         → stand-in for Flink Neue
 *                        Light 300 / Regular 400 / Medium 500 (sub-headers) / Bold 700. Uppercase labels: 600 + letter-spacing .12em.
 *   "Actual Condensed" = Bebas Neue (400)  → the font actually used in the brandbook for the tagline
 *                        "GIFTS.ACCENTS.DECOR." and the slogan "MÁS DISEÑO. MÁS ESTILO. MÁS ACTUAL." (optional).
 */

/* Noto Serif Display — Google Fonts */
@font-face {
  font-family: "Actual Display";
  src: url("../assets/fonts/noto-serif-display-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  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;
}

/* Noto Serif Display Italic — Google Fonts */
@font-face {
  font-family: "Actual Display";
  src: url("../assets/fonts/noto-serif-display-latin-wght-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  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;
}

/* Outfit — Google Fonts */
@font-face {
  font-family: "Actual Sans";
  src: url("../assets/fonts/outfit-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  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;
}

/* Bebas Neue — Google Fonts (single weight; declared 100–900 so browsers never synthesize a faux bold) */
@font-face {
  font-family: "Actual Condensed";
  src: url("../assets/fonts/bebas-neue-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  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;
}
