/*
Trying to keep the basic fonts styles as globally consistent as possible
*/

/* default font-family for regular text */ 
body {
    font-family: 'Crimson Pro', serif;
}

/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    line-height: 1.2em;
}

/* add this class to make an element use montserrat */ 
.cc-txt-sans {
    font-family: Montserrat, sans-serif;
}
/* add this class to make an element use montserrat */ 
.cc-txt-bold-sans {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
}

