I want to use "Antonio font" which is not available in google fonts. I received a .ttf file and used it as specified below, is it enough or do I need additional files (woff,woff2,etc.)?
@font-face {
font-family: Antonio;
src: url(../../../../public/assets/fonts/Antonio-Regular.ttf) format('truetype');
}
.obj{
font-family: Antonio, serif;
}