/*
################################################
## File:       fonts.css
## Part of:    Code403 Website
#### METADATA ##################################
## VERSION     DATE      BY   COMMENT
## 1.0         20240829  ME   Initial version
################################################
*/

@font-face {
     font-family: 'poppins-light';
     font-display: swap;
     src: url('../fonts/poppins-light.woff2') format('woff2'),
          url('../fonts/poppins-light.woff') format('woff');
     font-weight: normal;
     font-style: normal;     
}
    
@font-face {
     font-family: 'poppins-regular';
     font-display: swap;
     src: url('../fonts/poppins-regular.woff2') format('woff2'),
          url('../fonts/poppins-regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}

@font-face {
     font-family: 'poppins-medium';
     font-display: swap;
     src: url('../fonts/poppins-medium.woff2') format('woff2'),
          url('../fonts/poppins-medium.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}

@font-face {
     font-family: 'poppins-semibold';
     font-display: swap;
     src: url('../fonts/poppins-semibold.woff2') format('woff2'),
          url('../fonts/poppins-semibold.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}

@font-face {
     font-family: 'poppins-bold';
     src: url('../fonts/poppins-bold.woff2') format('woff2'),
          url('../fonts/poppins-bold.woff') format('woff');
     font-weight: normal;
     font-style: normal;  
}

@font-face {
     font-family: 'poppins-black';
     src: url('../fonts/poppins-black.woff2') format('woff2'),
          url('../fonts/poppins-black.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}

/*
#########
## EoC ##
#########
*/