/**
 * GLOBAL FONT DEFAULTS
 * but each component (navbars, etc.) will have their own font-family, we won't try to centralize that here
 */


/* multiple fonts in one call, at all the weights we will want */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;600;700&family=Montserrat:wght@300;400;600;700&display=swap");


body, td {
    font-family: 'Merriweather', sans-serif;
    font-size: 14px;
    color: #262626;
}

h1 {  /* yes h1 page titles are smaller than h2 section headings; this is intentional*/
    font-family: 'Montserrat', sans-serif;
    color: #262626;
    font-size: 22px;
    font-weight: 600;
}

h2 {  /* yes h2 section headings are larger than h1 page titles; this is intentional*/
    font-family: 'Merriweather', sans-serif;
    color: #262626;
    font-size: 24px;
    font-weight: 600;
}

h3 {
    font-family: 'Merriweather', sans-serif;
    color: #262626;
    font-size: 18px;
    font-weight: 600;
}

h4 {
    font-family: 'Merriweather', sans-serif;
    color: #262626;
    font-size: 16px;
    font-weight: 600;
}
