
/*
  fix implemented to solve missing fonts. Setting all fonts to Switzer font
  https://jira.isobar.ch/browse/PT0120043502-302
*/


@font-face {
  font-family: 'Switzer';
  src: url('https://fonts.cdnfonts.com/css/switzer') format('woff2'),
    url('https://fonts.cdnfonts.com/css/switzer') format('woff'),
    url('https://fonts.cdnfonts.com/css/switzer') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

body * {
  font-family: 'Switzer', sans-serif!important;
}
