/* styles.css */

/* Import Montserrat font for headers */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Import Open Sans font for body text */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000; /* Set the default text color for the body */
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #215732; /* Set the header text color */
}

/* You can add more styles for other heading levels (h2, h3, etc.) if needed */
