I'm trying to implement certain font on my vue project, but the font seems not working, this is how i import the font locally in my App.vue file
@font-face {
font-family: "Open Sans Bold";
src: local("OpenSans-Bold"), url("./fonts/OpenSans-Bold.ttf"), format("truetype");
font-weight: bold;
}'
this is how i use it on my Home.vue file
.router-link-active{
font-family: "Open Sans Bold";
color: #5F5F5F !important;
text-decoration: underline;
text-underline-position: under;
text-decoration-thickness: 3px;
}
did i make any mistake?

.router-link-activeclass is overwriting by others or not. If yes then u will need to write a more specific css selector to your element