
/*
 * TODO
 * according to https://identity.usc.edu/digital/web-fonts
 * National Regular is weight 500, but none of the other otfs map to 400
 * Regular looks to bold compared to iwitness.usc.edu, so for now i have mapped them
 * starting at lite
 */
@font-face {
  font-family: 'national';
  src: url( '/assets/national/National-Light.otf' ) format( 'opentype' );
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'national';
  src: url( '/assets/national/National-Regular.otf' ) format( 'opentype' );
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'national';
  src: url( '/assets/national/National-Semibold.otf' ) format( 'opentype' );
  font-weight: 600;
  font-style: normal;
}

