/* Google Fonts Local - Poppins y Space Grotesk */
/* Versión local sin CDN */

/* Fallback fonts que funcionan bien como alternativas */
:root {
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
}

/* Simulación de Poppins con fuentes del sistema */
.font-poppins {
  font-family: var(--font-primary);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Simulación de Space Grotesk con fuentes del sistema */
.font-space-grotesk {
  font-family: var(--font-secondary);
  font-feature-settings: "kern" 1;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Pesos de fuente */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Aplicar fuentes por defecto */
body {
  font-family: var(--font-primary);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
}

.highlight, .logo-container, .section-header h2 {
  font-family: var(--font-secondary);
  font-weight: 700;
}
