/* Importar Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Importar Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Aplicar Roboto a los títulos */
h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700; /* Bold */
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400; /* Normal */
}

h1, h2, h3 {
  font-family: 'Roboto', sans-serif; /* Títulos con Roboto */
}

.light-text {
  font-weight: 300; /* Light */
}

.bold-text {
  font-weight: 700; /* Bold */
}