/* ============================================================
   1. Inicio — fonts.css
   Registro de tipografías locales TeRecordare
   ============================================================ */

/* ============================================================
   1.1 Inicio — Cormorant
   ============================================================ */
@font-face {
  font-family: "Cormorant";
  src: url("/assets/fonts/cormorant-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("/assets/fonts/cormorant-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* ============================================================
   1.1 Fin
   ============================================================ */


/* ============================================================
   1.2 Inicio — Playfair
   ============================================================ */
@font-face {
  font-family: "Playfair";
  src: url("/assets/fonts/playfair-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair";
  src: url("/assets/fonts/playfair-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* ============================================================
   1.2 Fin
   ============================================================ */


/* ============================================================
   1.3 Inicio — Baskerville
   ============================================================ */
@font-face {
  font-family: "Baskerville";
  src: url("/assets/fonts/baskerville-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskerville";
  src: url("/assets/fonts/baskerville-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* ============================================================
   1.3 Fin
   ============================================================ */


/* ============================================================
   1.4 Inicio — Great Vibes
   ============================================================ */
@font-face {
  font-family: "GreatVibes";
  src: url("/assets/fonts/greatvibes-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ============================================================
   1.4 Fin
   ============================================================ */


/* ============================================================
   1.5 Inicio — Precarga forzada de familias
   Fuerza al navegador a resolver todas las fuentes locales
   aunque algunas se usen dinámicamente por JS
   ============================================================ */
html::after {
  content: "A B C D";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  font-size: 1px;
  line-height: 1;
  left: -9999px;
  top: -9999px;
  font-family: "Cormorant", "Playfair", "Baskerville", "GreatVibes", serif;
}
/* ============================================================
   1.5 Fin
   ============================================================ */


/* ============================================================
   2. Inicio — Variables tipográficas
   ============================================================ */
:root {
  --tr-font-display-main: "Cormorant", serif;
  --tr-font-display-alt: "Playfair", serif;
  --tr-font-body-alt: "Baskerville", serif;
  --tr-font-decorative: "GreatVibes", cursive;
}
/* ============================================================
   2. Fin
   ============================================================ */

/* ============================================================
   3. Fin — fonts.css
   ============================================================ */