/**
 * AGEEMCTI - Configuración de Fuentes
 * Merriweather para títulos, Open Sans para cuerpo
 * 
 * Uso: Incluir después de Google Fonts CDN
 * <link href="/assets/css/fonts.css" rel="stylesheet">
 */

/* Variables CSS para tipografía */
:root {
  /* Fuentes principales */
  --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Pesos de fuente */
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* Clases de utilidad para fuentes */
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
}

.font-body {
  font-family: var(--font-body);
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Tamaños de fuente base */
.text-display {
  font-size: 3rem;
  line-height: 1.2;
}

.text-h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.text-h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.text-h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.text-body {
  font-size: 1rem;
  line-height: 1.6;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
