/* Typography CSS */

/* Import Michroma font */
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* Apply Michroma font to the entire site */
body {
    font-family: 'Michroma', sans-serif;
    
}

/* Example of additional typography styles */
h1 {
    font-size: 22px; /* Example heading size */
    font-weight: bold;
}

h2 {
    font-size: 19px; /* Example heading size */
    font-weight: bold;
}

p {
    font-size: 0.8rem; /* Example paragraph size */
    line-height: 1.5; /* Example line height */
}
