/* 
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: 'Gochi Hand';
     src: local('Gochi Hand'),
         url('/webfont/Gochi\ Hand.woff2') format('woff2'),
         url('/webfont/Gochi\ Hand.woff2') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 
@font-face {
     font-family: 'Ms Madi';
     src: local('Ms Madi'),
         url('/webfont/Ms\ Madi.woff2') format('woff2'),
         url('/webfont/Ms\ Madi.woff2') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Rock Salt';
     src: local('Rock Salt'),
         url('/webfont/Rock\ Salt.woff2') format('woff2'),
         url('/webfont/Rock\ Salt.woff2') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}

@font-face {
    font-family: 'Short Stack';
    src: local('Short Stack'),
        url('/webfont/Short\ Stack.woff2') format('woff2'),
        url('/webfont/Short\ Stack.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}