/* ======================================================
   TIPOGRAFÍA DE MARCA — Poppins (self-host, Fase B rebranding)
   ======================================================
   Poppins es la tipografía oficial de GenkIA. Se sirve localmente
   (public/assets/brand/fonts/), subconjunto latin, licencia SIL OFL 1.1
   (ver assets/brand/fonts/OFL.txt).

   `font-display: swap` -> el texto se pinta de inmediato con el fallback
   (`Arial`/system, definido en --font-sans) y cambia a Poppins al cargar,
   sin bloquear el render. Pesos: 400 Regular, 500 Medium, 600 Semibold,
   700 Bold. */

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../assets/brand/fonts/poppins-400.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../assets/brand/fonts/poppins-500.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../assets/brand/fonts/poppins-600.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../assets/brand/fonts/poppins-700.woff2") format("woff2");
}
