import { createGlobalStyle } from "styled-components"; // OPCION : Agregar el archivo fisico de la font // import RobotoWoff from "./fonts/roboto-condensed-v19-latin-regular.woff"; // export const GlobalStyle = createGlobalStyle` // @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500&display=swap'); // body { // font-family: 'Poppins', sans-serif; // margin: 0; // padding: 0; // box-sizing: border-box; // } // `; // OPCION A: Usar font face para agregar la font // @font-face { // font-family: 'Roboto Condensed'; // src: url(${RobotoWoff2}) format('woff2'), // url(${RobotoWoff}) format('woff'); // }