/* Fonts CSS - Montserrat Font Family */

/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Base font settings */
* {
    font-family: 'Montserrat', sans-serif;
}

/* Body font */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

h2 {
    font-weight: 600;
    font-size: 2rem;
}

h3 {
    font-weight: 600;
    font-size: 1.75rem;
}

h4 {
    font-weight: 500;
    font-size: 1.5rem;
}

h5 {
    font-weight: 500;
    font-size: 1.25rem;
}

h6 {
    font-weight: 500;
    font-size: 1rem;
}

/* Paragraphs */
p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Links */
a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Buttons */
button, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Form elements */
input, textarea, select {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Labels */
label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Navigation */
nav, .nav {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Tables */
table, th, td {
    font-family: 'Montserrat', sans-serif;
}

th {
    font-weight: 600;
}

td {
    font-weight: 400;
}

/* Utility classes for different font weights */
.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;
}

.font-black {
    font-weight: 900;
}

/* Utility classes for italic */
.font-italic {
    font-style: italic;
}

/* Utility classes for different font sizes */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.text-8xl {
    font-size: 6rem;
}

.text-9xl {
    font-size: 8rem;
}
