/* Fuentes base: títulos con Raleway ExtraLight 200, texto con Pavanam */
@import url('https://fonts.googleapis.com/css2?family=Pavanam&family=Raleway:wght@100;200;300&display=swap');

:root {
  --font-title: 'Raleway', sans-serif;
  --font-body: 'Pavanam', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 200; /* ultraligero */
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

body, p, span, a, li, label, input, button, textarea, select {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}