/* 
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: 'Kia Signature';
     src: local('Kia Signature'),
         url(./../fonts/KiaSignatureBold.woff2) format('woff2'),
     font-weight: 700;
     font-style: normal;
     font-display: swap;
}

@font-face {
    font-family: 'Kia Signature';
    src: local('Kia Signature'),
        url(./../fonts/KiaSignatureRegular.woff2) format('woff2'),
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kia Signature';
    src: local('Kia Signature'),
        url(./../fonts/KiaSignatureLight.woff2) format('woff2'),
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GE SS Two';
    src: local('GE SS Two'),
        url(./../fonts/GE-SS-Two-Bold.woff2) format('woff2'),
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GE SS Two';
    src: local('GE SS Two'),
        url(./../fonts/GE-SS-Two-Medium.woff2) format('woff2'),
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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