/* ===================================================================
   Tipografía — tiradatarotgratis.es
   Fuentes auto-alojadas (RGPD-friendly, sin llamadas a Google).
   Títulos: Cinzel Decorative · Cuerpo: Cormorant Garamond
   Ambas bajo licencia SIL Open Font License (libre y comercial).
   Los .woff2 viven en /fonts/ dentro de la carpeta pública.
   =================================================================== */

/* --- Cinzel Decorative (títulos) --- */
@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 400;
  font-display: swap;              /* muestra texto con fuente de respaldo mientras carga */
  src: url('/fonts/cinzel-decorative-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/cinzel-decorative-bold.woff2') format('woff2');
}

/* --- Cormorant Garamond (cuerpo) --- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-italic.woff2') format('woff2');
}

/* ===================================================================
   Variables de tipografía — usar estas en el resto del CSS
   =================================================================== */
:root {
  --font-titulo: 'Cinzel Decorative', Georgia, serif;
  --font-cuerpo: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
}

/* ===================================================================
   Aplicación base
   =================================================================== */
body {
  font-family: var(--font-cuerpo);
  font-size: 1.25rem;       /* Cormorant es estrecha: conviene tamaño algo mayor */
  line-height: 1.6;
}

h1, h2, h3,
.titulo {
  font-family: var(--font-titulo);
  font-weight: 700;
  letter-spacing: 0.02em;   /* Cinzel respira mejor con algo de espaciado */
}
