/* Aplica la fuente Montserrat a todo el sitio con peso regular por defecto */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Regular como predeterminado */
}

/* Para titulares o textos que quieras que se vean más finos (thin) */
h1, h2, h3, .text-thin {
  font-weight: 100; /* Peso thin */
}

/* Para texto en negrita (bold) */
.text-bold {
  font-weight: 700; /* Peso bold */
}

/* Para estilos personalizados en diferentes lugares */
.text-regular {
  font-weight: 400; /* Peso regular */
}

.text-light {
  font-weight: 300; /* Peso light */
}
