/* 
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: 'KontrapunktMikiBold';
     src: url('https://twoandtwo.co.za/wp-content/webfont/KontrapunktMikiBold.otf') format('otf');
     font-weight: bold;
     font-style: normal;

}
 

 @font-face {
     font-family: 'KontrapunktMikiRegular';
     src: url('https://twoandtwo.co.za/wp-content/webfont/KontrapunktMikiRegular.otf') format('otf');
     font-weight: normal;
     font-style: normal;
  
}
@font-face {
     font-family: 'BrightTTF';
     src: url('https://twoandtwo.co.za/wp-content/webfont/BrightTTF.woff2') format('woff2');
     font-weight: normal;
     font-style: normal;
 
}

@font-face {
     font-family: 'KontrapunktMiki-Regular';
     src: url('https://twoandtwo.co.za/wp-content/webfont/KontrapunktMiki-Regular.woff2') format('woff2);
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}