/* 
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: 'Santana Black';
     src: local('Santana Black'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/santana-black-webfont.woff2') format('woff2'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/santana-black-webfont.woff') format('woff');
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Santana-Black.ttf') format('ttf');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 
@font-face {
     font-family: 'Gudea Regular';
     src: local('Gudea Regular'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Regular-webfont.woff') format('woff'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Regular-webfont.ttf') format('ttf');
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Regular-webfont.svg') format('svg');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }
@font-face {
     font-family: 'Gudea Bold';
     src: local('Gudea Bold'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Bold-webfont.woff') format('woff'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Bold-webfont.ttf') format('ttf');
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Bold-webfont.svg') format('svg');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }
@font-face {
     font-family: 'Gudea Italic';
     src: local('Gudea Italic'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Italic-webfont.woff') format('woff'),
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Italic-webfont.ttf') format('ttf');
         url('/wp-content/themes/Avada-Child-Theme/fonts-local/Gudea-Italic-webfont.svg') format('svg');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }

