Complete the code to import a Google Font in Figma.
font-family: '[1]', sans-serif;
The correct font-family name to import from Google Fonts is Roboto.
Complete the code to apply the Google Font weight 700 (bold) in Figma.
font-weight: [1];The font-weight 700 corresponds to bold in Google Fonts.
Fix the error in the Google Fonts URL to import the font correctly.
@import url('https://fonts.googleapis.com/css2?family=[1]&display=swap');
The correct syntax for Google Fonts URL uses wght@ to specify weights.
Fill both blanks to set font style and fallback fonts correctly.
font-family: '[1]', [2], sans-serif;
Use Roboto as the Google Font and Helvetica as a common fallback font.
Fill all three blanks to create a CSS rule that imports, sets font family, and font weight.
@import url('https://fonts.googleapis.com/css2?family=[1]&display=swap'); body { font-family: '[2]', sans-serif; font-weight: [3]; }
The import URL must specify the font and weights, the font-family uses the font name, and font-weight sets the weight.
