CSS is a cascading schema, so if you assign the font-family of
"Elephant" to the grid (HTML table on client-side), then everything
underneath it should follow, unless you specified somewhere else in
your stylesheet that <tr> or <td> tags should have something else...
Another word of advice: don't assign a font-family just one value -
assign it 2 or 3. For example, not everyone will have your font
"Elephant" installed on their computer. Therefore, assign it something
like this:
..Grid { font-family: Elephant, Arial, Helvetica; }
In this example, there is a font that should cover your system, a
Windows PC, and a Mac... this just increases the usefulness of your
CSS.
Happy coding!