what I did to load my fonts were two statements of @ font-face because in one part I use regular and others bold and load them by parts but visual studio gives me a warning so I guess it is not the best way to implement font face, help please ... this is the code
@font-face {
font-family: "Champagne & Limousines";
src: url('../fonts/Guava/Champagne & Limousines.ttf') format('truetype');
}
@font-face {
font-family: "Champagne & Limousines Bold";
src: url('../fonts/Guava/Champagne & Limousines Bold.ttf') format('truetype');
}