/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* 
   Note: To save fonts locally as requested, download the font files from Google Fonts 
   and place them in the assets/fonts/ directory, then update the src paths below.
   For now, we use the CDN to ensure immediate availability of modern fonts.
*/

/* Fallback / Local Definitions if files exist */
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Mokoto Font for Headings/Logos if needed, keeping existing reference */
@font-face {
    font-family: 'Mokoto';
    src: url('mokoto.regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}