/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* CSS Reset & Base Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Default Font Assignments */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Headings - Playfair Display */
h1, h2, h3, h4, h5, h6,
.font-display {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Extra Bold Headings - Montserrat */
.font-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Body Text - Inter */
p, span, a, button, input, textarea,
.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Font Size Defaults */
h1 {
    font-size: 3rem; /* 48px */
    font-weight: 800;
}

h2 {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
}

h3 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
}

h4 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
}

h5 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
}

h6 {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
}

p {
    font-size: 1rem; /* 16px */
    font-weight: 400;
}

small, .text-small {
    font-size: 0.875rem; /* 14px */
}

.text-xs {
    font-size: 0.75rem; /* 12px */
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem; /* 36px */
    }

    h2 {
        font-size: 1.875rem; /* 30px */
    }

    h3 {
        font-size: 1.5rem; /* 24px */
    }
}

/* Icon Font */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

