Your @font is incorrect. This is how you have it.
Code:
@font-face {
font-family: "Abel";
font-style: normal;
font-weight: normal;
src: url("../Fonts/Abel-Regular.ttf") format("truetype");
}
And this is what is correct
Code:
@font-face {
font-family: "Abel";
font-style: normal;
font-weight: normal;
src: url("../Fonts/Abel-Regular.ttf")
}
As long as "../Fonts/Abel-Regular.ttf" is correct then it should work. You do not put the font format type in the src: line or any line in the CSS style.