/ Define the regular Calibri font /
@font-face {
     font-family: 'Calibri';
     src: url('./calibri-regular.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }
 
 / Define the bold Calibri font /
 @font-face {
     font-family: 'Calibri';
     src: url('./calibri-bold.ttf') format('truetype');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }
 
 / Define the italic Calibri font /
 @font-face {
     font-family: 'Calibri';
     src: url('./calibri-italic.ttf') format('truetype');
     font-weight: normal;
     font-style: italic;
     font-display: swap;
 }
 
 / Define a bold-italic style for completeness /
 @font-face {
     font-family: 'Calibri';
     src: url('./calibri-bold.ttf') format('truetype');
     font-weight: bold;
     font-style: italic;
     font-display: swap;
 }