/* 
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: 'Royce Black';
     src: local('Royce Black'),
        url('../webfont/Royce-Black.woff2') format('woff2'),
         url('../webfont/Royce-Black.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 
@font-face {
     font-family: 'Royce Bold';
     src: local('Royce Bold'),
         url('../webfont/Royce-Bold.woff2') format('woff2'),
         url('../webfont/Royce-Bold.woff') format('woff');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Royce Medium';
     src: local('Royce Medium'),
         url('../webfont/Royce-Medium.woff2') format('woff2'),
         url('../webfont/Royce-Medium.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}

@font-face {
     font-family: 'Royce Regular';
     src: local('Royce Regular'),
         url('../webfont/Royce-Regular.woff2') format('woff2'),
         url('../webfont/Royce-Regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}

@font-face {
     font-family: 'Royce Semibold';
     src: local('Royce Semibold'),
           url('../webfont/Royce-Semibold.woff2') format('woff2'),
         url('../webfont/Royce-Semibold.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}


@font-face {
     font-family: 'MinionPro Regular';
     src: local('MinionPro Regular'),
         url('../webfont/MinionPro-Regular.woff2') format('woff2'),
         url('../webfont/MinionPro-Regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}