﻿/* 
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: 'ShadowIntoLight';
     src: local('ShadowIntoLight'),
         url('https://www.ablano.de/wp-content/uploads/shadows-into-light-two-v7-latin-regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 
/*
Include an additional @font-face block for each font file in the family.
Change the font-weight and font-style value to match each font file
*/

@font-face {
     font-family: 'OpenSans';
     src: local('OpenSans'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-regular.woff2') format('woff2'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }
 
 @font-face {
     font-family: 'OpenSans';
     src: local('OpenSans'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-300.woff2') format('woff2'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-300.woff') format('woff');
     font-weight: 300;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'OpenSans';
     src: local('OpenSans'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-600.woff2') format('woff2'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-600.woff') format('woff');
     font-weight: 600;
     font-style: normal;
     font-display: swap;
 }
 
  @font-face {
     font-family: 'OpenSans';
     src: local('OpenSans'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-700.woff2') format('woff2'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-700.woff') format('woff');
     font-weight: 700;
     font-style: normal;
     font-display: swap;
 }
 
  @font-face {
     font-family: 'OpenSans';
     src: local('OpenSans'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-800.woff2') format('woff2'),
         url('https://www.ablano.de/wp-content/uploads/open-sans-v15-latin-800.woff') format('woff');
     font-weight: 800;
     font-style: normal;
     font-display: swap;
 }



