I am currently working on implementing the "Roboto" font in my Prestashop website. The design files I received are in .psd format, and the graphic designer used fonts "Roboto Medium" and "Roboto Regular". To clarify, if I want to use Roboto Normal, can I simply apply the following CSS:
font-family: "Roboto";
font-weight: 400;
And if I wish to use Roboto Medium, should I use:
font-family: "Roboto";
font-weight: 500;
In simple terms, are font weights 400 and 500 equivalent to Roboto Normal and Roboto Medium?