/*
 This declares the custom font that is used for headings and similar display items
 The declaration occurs in this file (in /public/assets) so that the fnts themselves
 can be stored in /public/assets.
 The fonts themselves are stored in /public/assets so that they can be pre-loaded, something
 that can't be done reliably if they are stored in /src/assets
 */
@font-face {
    font-family: 'branded-font';
    src: url('../assets/fonts/DOMINICA.eot');
    src: url('../assets/fonts/DOMINICA.woff2') format('woff2'), /* Modern Browsers */
    url('../assets/fonts/DOMINICA.woff') format('woff'), /* Modern Browsers */
    url('../assets/fonts/DOMINICA.TTF') format('truetype'); /* Safari, Android, iOS */
    font-display: swap;
}