/* Ash Division Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

/* Primary font for body text */
body {
    font-family: 'Roboto', sans-serif;
}

/* Display font for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
}

/* Navbar brand */
.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

/* Section titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

/* Team member names */
.team-member h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

/* Stats numbers */
.stat-number {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
}

/* Footer brand */
.footer-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

