Hi JohnDoe,
generally it is by changing modules/mod_jem/wide/tmpl/default.php for which template overrides could be used.
But unfortunately the data flieds provided by the model are mapped in modules/mod_jem/wide/helper.php so you have to enhance this file too (where overrides are not available so you need to do this again each time you update JEM).
In your specific case search in helper.php around line 142
$lists[$i]->city = htmlspecialchars($row->city, ENT_COMPAT, 'UTF-8');
Triplicate and modify this line so you finally get these three:
$lists[$i]->city = htmlspecialchars($row->city, ENT_COMPAT, 'UTF-8');
$lists[$i]->zip = htmlspecialchars($row->postalCode, ENT_COMPAT, 'UTF-8');
$lists[$i]->street = htmlspecialchars($row->street, ENT_COMPAT, 'UTF-8');
So you can use
$item->city,
$item->zip and
$item->street within the tmpl/default.php.
btw:
Same technique could be used on Banner or Teaser module too.
For other available fields take a look at components/com_jem/models/eventslist.php by checking "$query->select(..." lines in function getListQuery() - or set a breakpoint in helper.php and look at $row

)