I would like to use \"Roboto\" font in prestashop. I\'ve received design in .psd files and graphic designer used fonts \"Roboto Medium\" and \"Roboto Regular\". Do i understand
Make sure you are closing your CSS lines.
font-family: "Roboto";
font-weight: 400;
Yes, your weights are correct.
font-weight: 400; //normal
font-weight: 500; //medium
font-weight: 700; //bold
Please read this regarding font-weight
, it's not always available depending on the font. But, according to Google, you should be able to use those weights without a problem.