body{
                                                                                                                        }

    @import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400&family=Ubuntu:wght@400;700&display=swap');

/* Apply Exo 2 to the main body text (paragraphs, etc.) */
body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6; /* Adjust line-height for readability */
    font-size: 16px; /* Example: set a base font size */
}

/* Apply Ubuntu to all header tags */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700; /* Example: Use bold for headers, if you imported it */
    margin-top: 1em; /* Adjust spacing as needed */
    margin-bottom: 0.5em; /* Adjust spacing as needed */
}

/* You can also target paragraphs explicitly if needed, though 'body' usually covers it */
p {
    font-family: 'Exo 2', sans-serif; /* Explicitly ensure paragraphs use Exo 2 */
    margin-bottom: 1em; /* Adjust spacing as needed */
}

/* Add any other specific styling you need */
    
