/* 
CSS for the normal weight and style file for a custom font.
Attempts to load the file locally first.
Use the line that loads a woff2 version of the font if you have the required file,
or else delete that line and just use the woff file loading line.
Uses font-display:swap; to help the loading process.
*/
@font-face {
     font-family: 'AvertaStd-Regular';
     src: local('AvertaStd-Regular'),
         url('../../../webfonts/AvertaStd-Regular.woff2') format('woff2')
     font-weight: 400;
     font-style: normal;
     font-display: swap;
}
 
/*
Include an additional @font-face block for each font file in the family.
Change the font-weight and font-style value to match each font file
*/
@font-face {
     font-family: 'AvertaStd-Bold';
     src: local('AvertaStd-Bold'),
         url('../../../webfonts/AvertaStd-Bold.woff2') format('woff2')
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'AvertaStd-ExtraBold';
     src: local('AvertaStd-ExtraBold'),
         url('../../../webfonts/AvertaStd-ExtraBold.woff2') format('woff2')
     font-weight: 800;
     font-style: normal;
     font-display: swap;
}

@font-face {
     font-family: 'AvertaStd-Extrathin';
     src: local('AvertaStd-Extrathin'),
         url('../../../webfonts/AvertaStd-Extrathin.woff2') format('woff2')
     font-weight: 200;
     font-style: normal;
     font-display: swap;
}

@font-face {
     font-family: 'AvertaStd-Light';
     src: local('AvertaStd-Light'),
         url('../../../webfonts/AvertaStd-Light.woff2') format('woff2')
     font-weight: 300;
     font-style: normal;
     font-display: swap;
}

@font-face {
     font-family: 'AvertaStd-Semibold';
     src: local('AvertaStd-Semibold'),
         url('../../../webfonts/AvertaStd-Semibold.woff2') format('woff2')
     font-weight: 600;
     font-style: normal;
     font-display: swap;
}