/* Additional font styles for Montserrat */

/* Headings with styled underlines */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

/* Paragraph styles */
p {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

/* List styles */
ul,
ol,
li {
  font-family: 'Montserrat', sans-serif;
}

/* Form elements (additional styling) */
input,
textarea,
select,
button {
  font-family: 'Montserrat', sans-serif;
}

/* Footer styling */
footer {
  font-family: 'Montserrat', sans-serif;
}

/* Navigation and links */
nav,
a {
  font-family: 'Montserrat', sans-serif;
}

/* Font weight utility classes */
.weight-light {
  font-weight: 300;
}

.weight-regular {
  font-weight: 400;
}

.weight-medium {
  font-weight: 500;
}

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

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

.weight-extrabold {
  font-weight: 800;
}

/* Text transform utility classes */
.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}
