Salut,
A mon avis, ce que tu cherches, c'est une condition OR :
$events = $this->Evenement->find('all',array(
'conditions' => array(
'OR' => array(
'Month.month_id' => $month_id,
'Evenement.region_id' => $region_id
)
),
'recursive' => 0,
));