@P3aul
The location error has been pointed out
There are 2(or more) places that entries for every font face used must be made.
The first is the @font
Code:
@font-face {
font-family: "Charis";
font-style: normal;
font-weight: normal;
src:url(../Fonts/CharisSILR.ttf);
}
The rest are in the individual styles where THAT face is to be used.
Code:
font-family: "Charis", serif;
font-style: normal;
font-weight: normal;
Note that you normally need a separate @font (and font file) for each combination of weight and style you will use