/* ============================================================
   TRERO — Tipografía oficial: Archivo (Google Fonts, OFL)
   Servida localmente para performance y offline.
   Los 7 pesos estan en public/fonts/ y se sirven desde /fonts/.
   Este archivo se carga desde index.html como /brand/css/fonts.css
   (vive en public/brand/css/, dentro del publicDir de Vite).
   ============================================================ */

/* --- Titulares / botones / branding (itálicas) --- */
@font-face {
  font-family: "Archivo";
  src: url("/fonts/Archivo-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/fonts/Archivo-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* --- Texto general (romanas) --- */
@font-face {
  font-family: "Archivo";
  src: url("/fonts/Archivo-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/fonts/Archivo-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/fonts/Archivo-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/fonts/Archivo-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/fonts/Archivo-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- Roles tipográficos TRERO --- */
:root {
  --font-brand: "Archivo", system-ui, sans-serif;
}

.t-display {        /* H1 hero, titulares de sección */
  font-family: var(--font-brand);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.t-title {          /* H2/H3, nombres de equipos, tabs activos */
  font-family: var(--font-brand);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
}
.t-label {          /* chips, etiquetas, overlines */
  font-family: var(--font-brand);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.t-body {           /* texto corriente */
  font-family: var(--font-brand);
  font-weight: 600;
  line-height: 1.55;
}
.t-body-strong {
  font-family: var(--font-brand);
  font-weight: 700;
}
